home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 June / CHIP Haziran 2001.iso / prog / haziran / 19 / setup.exe / data.z / p9054_diag.bpr < prev    next >
Text File  |  2001-04-11  |  4KB  |  166 lines

  1. # ---------------------------------------------------------------------------
  2. !if !$d(BCB)
  3. BCB = $(MAKEDIR)\..
  4. !endif
  5.  
  6. # ---------------------------------------------------------------------------
  7. # IDE SECTION
  8. # ---------------------------------------------------------------------------
  9. # The following section of the project makefile is managed by the BCB IDE.
  10. # It is recommended to use the IDE to change any of the values in this
  11. # section.
  12. # ---------------------------------------------------------------------------
  13.  
  14. VERSION = BCB.03
  15. # ---------------------------------------------------------------------------
  16. PROJECT = p9054_diag.exe
  17. OBJFILES = p9054_diag.obj\
  18.  p9054_diag.obj\
  19.  p9054_lib.obj\
  20.  print_struct.obj\
  21.  pci_diag_lib.obj
  22. RESFILES =
  23. RESDEPEN = $(RESFILES)
  24. LIBFILES = 
  25. LIBRARIES = 
  26. SPARELIBS = 
  27. PACKAGES =
  28. DEFFILE =
  29. # ---------------------------------------------------------------------------
  30. PATHCPP = ../lib;../../../samples/shared;
  31. PATHASM = .;
  32. PATHPAS = .;
  33. PATHRC = .;
  34. DEBUGLIBPATH = $(BCB)\lib\debug
  35. RELEASELIBPATH = $(BCB)\lib\release
  36. # ---------------------------------------------------------------------------
  37. CFLAG1 =  -Od -w -r- -k -y -v -vi- -c -tWC
  38. CFLAG2 = -D_NO_VCL -I$(BCB)\include;../lib;../../../samples/shared
  39. CFLAG3 = -Tkh30000
  40. PFLAGS = -D_NO_VCL -$Y -$W -$O- -v -JPHN -M \
  41.  -U$(BCB)\lib;$(DEBUGLIBPATH);../lib;../../../samples/shared\
  42.  -I$(BCB)\include;../lib;../../../samples/shared
  43. RFLAGS = -D_NO_VCL -i$(BCB)\include;../lib;../../../samples/shared
  44. AFLAGS = /i$(BCB)\include /d_NO_VCL /mx /w2 /zd
  45. LFLAGS = -ap -Tpe -x -Gn -v \
  46.  -L$(BCB)\lib;$(DEBUGLIBPATH);../lib;../../../samples/shared
  47. IFLAGS =
  48. # ---------------------------------------------------------------------------
  49. ALLOBJ = c0x32.obj $(OBJFILES)
  50. ALLRES = $(RESFILES)
  51. ALLLIB = $(LIBFILES)  import32.lib cw32mt.lib
  52. # ---------------------------------------------------------------------------
  53. !ifdef IDEOPTIONS
  54.  
  55. [Version Info]
  56. IncludeVerInfo=0
  57. AutoIncBuild=0
  58. MajorVer=1
  59. MinorVer=0
  60. Release=0
  61. Build=0
  62. Debug=0
  63. PreRelease=0
  64. Special=0
  65. Private=0
  66. DLL=0
  67. Locale=1033
  68. CodePage=1252
  69.  
  70. [Version Info Keys]
  71. CompanyName=
  72. FileDescription=Executable (Console)
  73. FileVersion=1.0.0.0
  74. InternalName=
  75. LegalCopyright=
  76. LegalTrademarks=
  77. OriginalFilename=
  78. ProductName=
  79. ProductVersion=1.0.0.0
  80. Comments=
  81.  
  82. [Debugging]
  83. DebugSourceDirs=
  84.  
  85. [Parameters]
  86. RunParams=
  87. HostApplication=
  88.  
  89. !endif
  90.  
  91. # ---------------------------------------------------------------------------
  92. # MAKE SECTION
  93. # ---------------------------------------------------------------------------
  94. # This section of the project file is not used by the BCB IDE.  It is for
  95. # the benefit of building from the command-line using the MAKE utility.
  96. # ---------------------------------------------------------------------------
  97.  
  98. .autodepend
  99. # ---------------------------------------------------------------------------
  100. !if !$d(BCC32)
  101. BCC32 = bcc32
  102. !endif
  103.  
  104. !if !$d(DCC32)
  105. DCC32 = dcc32
  106. !endif
  107.  
  108. !if !$d(TASM32)
  109. TASM32 = tasm32
  110. !endif
  111.  
  112. !if !$d(LINKER)
  113. LINKER = ilink32
  114. !endif
  115.  
  116. !if !$d(BRCC32)
  117. BRCC32 = brcc32
  118. !endif
  119. # ---------------------------------------------------------------------------
  120. !if $d(PATHCPP)
  121. .PATH.CPP = $(PATHCPP)
  122. .PATH.C   = $(PATHCPP)
  123. !endif
  124.  
  125. !if $d(PATHPAS)
  126. .PATH.PAS = $(PATHPAS)
  127. !endif
  128.  
  129. !if $d(PATHASM)
  130. .PATH.ASM = $(PATHASM)
  131. !endif
  132.  
  133. !if $d(PATHRC)
  134. .PATH.RC  = $(PATHRC)
  135. !endif
  136. # ---------------------------------------------------------------------------
  137. $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
  138.     $(BCB)\BIN\$(LINKER) @&&!
  139.     $(LFLAGS) +
  140.     $(ALLOBJ), +
  141.     $(PROJECT),, +
  142.     $(ALLLIB), +
  143.     $(DEFFILE), +
  144.     $(ALLRES)
  145. !
  146. # ---------------------------------------------------------------------------
  147. .pas.hpp:
  148.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  149.  
  150. .pas.obj:
  151.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  152.  
  153. .cpp.obj:
  154.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  155.  
  156. .c.obj:
  157.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  158.  
  159. .asm.obj:
  160.     $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
  161.  
  162. .rc.res:
  163.     $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
  164. # ---------------------------------------------------------------------------
  165.  
  166.